UCF STIG Viewer Logo
Changes are coming to https://stigviewer.com. Take our survey to help us understand your usage and how we can better serve you in the future.
Take Survey

Ubuntu 22.04 LTS must be configured to use AppArmor.


Overview

Finding ID Version Rule ID IA Controls Severity
V-260557 UBTU-22-431015 SV-260557r953484_rule Medium
Description
Control of program execution is a mechanism used to prevent execution of unauthorized programs. Some operating systems may provide a capability that runs counter to the mission or provides users with functionality that exceeds mission requirements. This includes functions and services installed at the operating system level. Some of the programs, installed by default, may be harmful or may not be necessary to support essential organizational operations (e.g., key missions, functions). Removal of executable programs is not always possible; therefore, establishing a method of preventing program execution is critical to maintaining a secure system baseline. Methods for complying with this requirement include restricting execution of programs in certain environments, while preventing execution in other environments; or limiting execution of certain program functionality based on organization-defined criteria (e.g., privileges, subnets, sandboxed environments, or roles). Satisfies: SRG-OS-000368-GPOS-00154, SRG-OS-000370-GPOS-00155, SRG-OS-000324-GPOS-00125
STIG Date
Canonical Ubuntu 22.04 LTS Security Technical Implementation Guide 2024-03-21

Details

Check Text ( C-64286r953482_chk )
Verify Ubuntu 22.04 LTS AppArmor is active by using the following commands:

$ systemctl is-enabled apparmor.service
enabled

$ systemctl is-active apparmor.service
active

If "apparmor.service" is not enabled and active, this is a finding.

Check if AppArmor profiles are loaded and enforced by using the following command:

$ sudo apparmor_status | grep -i profile
32 profiles are loaded.
32 profiles are in enforce mode.
0 profiles are in complain mode.
0 profiles are in kill mode.
0 profiles are in unconfined mode.
2 processes have profiles defined.
0 processes are unconfined but have a profile defined.

If no profiles are loaded and enforced, this is a finding.
Fix Text (F-64194r953483_fix)
Enable and start "apparmor.service" by using the following command:

$ sudo systemctl enable apparmor.service --now

Note: AppArmor must have properly configured profiles for applications and home directories. All configurations will be based on the actual system setup and organization and normally are on a per role basis. See the AppArmor documentation for more information on configuring profiles.